home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1998 #6 / 1998 CD 6 (Gul).iso / main.dir / 00254.ls < prev    next >
Encoding:
Text File  |  1996-02-08  |  5.4 KB  |  220 lines

  1. global fSep
  2.  
  3. on startMovie
  4.   global voicePath, soundTrackPath, currentVoice, currentsoundTrack, vWindow, vSlider1, vSlider2, sliderTop, sliderBottom, volumeHPositions, ambientLevel, voiceLevel, gWaitForUser
  5.   set the timeoutScript to "Nothing"
  6.   set ambientLevel to 75
  7.   set voiceLevel to 255
  8.   set currentsoundTrack to "SILENCE.AIF"
  9.   set the preLoadEventAbort to 1
  10.   set vWindow to 46
  11.   set vSlider1 to 47
  12.   set vSlider2 to 48
  13.   set gWaitForUser to 0
  14.   soundSetup()
  15.   puppetVolumeControls()
  16. end
  17.  
  18. on declareGlobals
  19.   global gDoorOpen, gNullChannel, gDoorChannel, gMooVChannel, gWhichMooV, gDrawerChannel, gQTOn
  20.   set gDoorOpen to 0
  21.   set gNullChannel to 12
  22.   set gDoorChannel to 6
  23.   set gMooVChannel to 2
  24.   set gWhichMooV to "MONROE.MOV"
  25.   set gDrawerChannel to 5
  26.   set gQTOn to 0
  27.   puppetSprite(gNullChannel, 1)
  28.   set gLastRolledOn to 0
  29.   set gLastCastRolledOn to 0
  30. end
  31.  
  32. on stopMovie
  33.   global gNullChannel, gDoorChannel
  34. end
  35.  
  36. on resetNull
  37.   global gNullChannel
  38.   set the castNum of sprite gNullChannel to the number of cast "nullCast"
  39.   updateStage()
  40. end
  41.  
  42. on setUpDoor TRUEorFALSE
  43.   global gDoorChannel, gDoorOpen
  44.   puppetSprite(gDoorChannel, TRUEorFALSE)
  45.   set gDoorOpen to not TRUEorFALSE
  46. end
  47.  
  48. on checkRoll startChannel, endChannel, startCast
  49.   repeat with i = startChannel to endChannel
  50.     if rollOver(i) then
  51.       doRollUpdate(i, startChannel, startCast)
  52.     end if
  53.   end repeat
  54. end
  55.  
  56. on doRollUpdate whichSprite, startSprite, whichName
  57.   global gNullChannel, gDoorOpen
  58.   set castCount to whichSprite - startSprite
  59.   set isClicked to 0
  60.   set the castNum of sprite gNullChannel to the number of cast string(whichName) + castCount
  61.   updateStage()
  62.   repeat while rollOver(whichSprite)
  63.     if the mouseDown then
  64.       set isClicked to 1
  65.       exit repeat
  66.     end if
  67.     updateStage()
  68.   end repeat
  69.   if not isClicked then
  70.     set the castNum of sprite gNullChannel to the number of cast "nullCast"
  71.     updateStage()
  72.   end if
  73. end
  74.  
  75. on checkDoor
  76.   global gDoorChannel
  77.   if rollOver(gDoorChannel) then
  78.     activateDoor()
  79.   end if
  80. end
  81.  
  82. on doorOp
  83.   global gDoorOpen, gDoorChannel
  84.   if gDoorOpen then
  85.     ClearPuppets()
  86.     go(1, "HCraft")
  87.   else
  88.     set the castNum of sprite gDoorChannel to the number of cast "door open"
  89.     set gDoorOpen to 1
  90.     puppetTransition(2, 2, 3, 1)
  91.   end if
  92. end
  93.  
  94. on checkDrawer
  95.   global gDrawerChannel
  96.   if rollOver(gDrawerChannel) then
  97.     activateDrawer()
  98.   end if
  99. end
  100.  
  101. on activateDrawer
  102.   global gDoorOpen, gDrawerChannel
  103.   set isClicked to 0
  104.   if not gDoorOpen then
  105.     set the castNum of sprite gDrawerChannel to the number of cast "drawer hilite"
  106.     updateStage()
  107.   end if
  108.   repeat while rollOver(gDrawerChannel)
  109.     if the mouseDown then
  110.       drawerOp()
  111.       set isClicked to 1
  112.       exit repeat
  113.     end if
  114.     updateStage()
  115.   end repeat
  116.   if not isClicked then
  117.     if gDoorOpen then
  118.       set the castNum of sprite gDrawerChannel to the number of cast "drawer closed"
  119.       set gDoorOpen to 0
  120.       puppetTransition(4, 2, 6, 1)
  121.     else
  122.       set the castNum of sprite gDrawerChannel to the number of cast "drawer closed"
  123.       updateStage()
  124.     end if
  125.   end if
  126. end
  127.  
  128. on drawerOp
  129.   global gDoorOpen, gDrawerChannel
  130.   if gDoorOpen then
  131.     beep()
  132.   else
  133.     set the castNum of sprite gDrawerChannel to the number of cast "drawer open"
  134.     set gDoorOpen to 1
  135.     puppetTransition(3, 2, 6, 1)
  136.   end if
  137. end
  138.  
  139. on checkMarilyn
  140.   global gMooVChannel, gQTOn
  141.   if rollOver(15) then
  142.     go("Marilyn")
  143.     if not gQTOn then
  144.       PlayQT(gMooVChannel, 1)
  145.     end if
  146.   end if
  147. end
  148.  
  149. on oldplayQT TRUEorFALSE
  150.   global gMooVChannel, gWhichMooV
  151.   put gMooVChannel
  152.   set YESorNO to not TRUEorFALSE
  153.   set the locV of sprite gMooVChannel to 207 + (12000 * YESorNO)
  154.   set the movieRate of sprite gMooVChannel to TRUEorFALSE
  155.   set the directToStage of cast gWhichMooV to TRUEorFALSE
  156.   updateStage()
  157. end
  158.  
  159. on PlayQT channelNum, TorF
  160.   global gDoorOpen, gQTOn, gWhichMooV, gMooVChannel
  161.   set gQTOn to TorF
  162.   if channelNum = gMooVChannel then
  163.     set whichQT to gWhichMooV
  164.   end if
  165.   set the movieRate of sprite channelNum to TorF
  166.   set the visible of sprite channelNum to TorF
  167.   set the directToStage of cast the number of cast whichQT to TorF
  168.   if TorF = 0 then
  169.     set the movieTime of sprite channelNum to TorF
  170.     set the volume of sprite channelNum to TorF
  171.     puppetSprite(channelNum, TorF)
  172.     go(label("viewR") + 1)
  173.   else
  174.     set the volume of sprite channelNum to 255
  175.     WaitForQT(gMooVChannel)
  176.   end if
  177. end
  178.  
  179. on WaitForQT channelNum
  180.   global gMooVChannel
  181.   if the movieTime of sprite value(channelNum) < the duration of cast string(the name of cast value(the castNum of sprite value(channelNum))) then
  182.     go(the frame)
  183.   else
  184.     PlayQT(channelNum, 0)
  185.   end if
  186. end
  187.  
  188. on animate whichMember, channel, delay, frames
  189.   global gDoorOpen, gStarsOn, gPanelChannel, gStarChannel, gDest, gScreenBlank, gLastRate, gSpeedChannel, gWhichMooV, gWhichTV, gMooVChannel, gVidChannel
  190.   set counter to 0
  191.   repeat while gScreenBlank = 0
  192.     if counter = (frames - 1) then
  193.       set counter to 0
  194.     else
  195.       set counter to counter + 1
  196.     end if
  197.     set the castNum of sprite channel to the number of cast whichMember + counter
  198.     updateStage()
  199.     wait(delay)
  200.     if the mouseDown then
  201.       blankScreen()
  202.     end if
  203.     checkRoll()
  204.     checkStar()
  205.     checkDoor()
  206.   end repeat
  207. end
  208.  
  209. on propertySet propertyType, startChannel, endChannel, TRUEorFALSE
  210.   repeat with i = startChannel to endChannel
  211.     do("set the" && propertyType && "of sprite i = " & TRUEorFALSE)
  212.   end repeat
  213. end
  214.  
  215. on wait howLong
  216.   startTimer()
  217.   repeat while the timer <= howLong
  218.   end repeat
  219. end
  220.